Don't iterate multiple times over some of the children.
authorMatthias Clasen <mclasen@redhat.com>
Fri, 16 Jul 2004 14:33:21 +0000 (14:33 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 16 Jul 2004 14:33:21 +0000 (14:33 +0000)
2004-07-16  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate
multiple times over some of the children.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkcombobox.c

index b69057f2f9c08b38058fb8097d28ffe629c5c251..b15ca79470874ae3c6243dfc0d2d33d2bb704d98 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate
+       multiple times over some of the children. 
+
 Thu Jul 15 22:19:40 2004  Matthias Clasen  <maclas@gmx.de>
 
        Fix #60128, #58307, #144706:
index b69057f2f9c08b38058fb8097d28ffe629c5c251..b15ca79470874ae3c6243dfc0d2d33d2bb704d98 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate
+       multiple times over some of the children. 
+
 Thu Jul 15 22:19:40 2004  Matthias Clasen  <maclas@gmx.de>
 
        Fix #60128, #58307, #144706:
index b69057f2f9c08b38058fb8097d28ffe629c5c251..b15ca79470874ae3c6243dfc0d2d33d2bb704d98 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate
+       multiple times over some of the children. 
+
 Thu Jul 15 22:19:40 2004  Matthias Clasen  <maclas@gmx.de>
 
        Fix #60128, #58307, #144706:
index b69057f2f9c08b38058fb8097d28ffe629c5c251..b15ca79470874ae3c6243dfc0d2d33d2bb704d98 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate
+       multiple times over some of the children. 
+
 Thu Jul 15 22:19:40 2004  Matthias Clasen  <maclas@gmx.de>
 
        Fix #60128, #58307, #144706:
index a090e61291eeccdae566abd2a2674f66057926eb..a00b54a0bc7a0cdba4f053561a41b77dffd913b9 100644 (file)
@@ -1751,12 +1751,6 @@ gtk_combo_box_forall (GtkContainer *container,
     {
       if (combo_box->priv->button)
        (* callback) (combo_box->priv->button, callback_data);
-      if (combo_box->priv->box)
-       (* callback) (combo_box->priv->box, callback_data);
-      if (combo_box->priv->separator)
-       (* callback) (combo_box->priv->separator, callback_data);
-      if (combo_box->priv->arrow)
-       (* callback) (combo_box->priv->arrow, callback_data);
       if (combo_box->priv->cell_view_frame)
        (* callback) (combo_box->priv->cell_view_frame, callback_data);
     }